home *** CD-ROM | disk | FTP | other *** search
/ Digit Magazine 1999 December / cDigit issue 18 - December 1999.iso / pc / demos / iplayStudio / ipstudio.exe / PROGRAM.Z / Wipes / fade.wip < prev    next >
Encoding:
Text File  |  1999-06-18  |  3.0 KB  |  79 lines

  1. !ScalaScript
  2. /*
  3. ** $Id: fade.wip,v 1.26 1999/02/05 00:27:31 dbarrans Exp $
  4. **
  5. ** Fade wipes
  6. **
  7. */
  8.  
  9. GROUPID($07109400);
  10.  
  11. //===================
  12. // Families
  13. //===================
  14. FadeWipe("CutWhiteFade", Icon(14,14), In(RGB, 255, 255, 255));
  15. FadeWipe("FadeWhiteFade", Icon(15,14), Out(RGB, 255, 255, 255), In(RGB, 255, 255, 255));
  16. FadeWipe("FadeWhiteCut", Icon(16,14), Out(RGB, 255, 255, 255));
  17.  
  18. FadeWipe("CutGreyFade", Icon(17,14), In(RGB, 127,127,127));
  19. FadeWipe("FadeGreyFade", Icon(18,14), Out(RGB, 127,127,127), In(RGB, 127,127,127));
  20. FadeWipe("FadeGreyCut", Icon(19,14), Out(RGB, 127,127,127));
  21.  
  22. FadeWipe("CutBlackFade", Icon(0,15), In(RGB, 0,0,0));
  23. FadeWipe("FadeBlackFade", Icon(1,15), Out(RGB, 0,0,0), In(RGB, 0,0,0));
  24. FadeWipe("FadeBlackCut", Icon(2,15), Out(RGB, 0,0,0));
  25.  
  26. FadeWipe("CutRedFade", Icon(3,15), In(RGB, 255,0,0));
  27. FadeWipe("FadeRedFade", Icon(4,15), Out(RGB, 255,0,0), In(RGB, 255,0,0));
  28. FadeWipe("FadeRedCut", Icon(5,15), Out(RGB, 255,0,0));
  29.  
  30. FadeWipe("CutGreenFade", Icon(6,15), In(RGB, 0,255,0));
  31. FadeWipe("FadeGreenFade", Icon(7,15), Out(RGB, 0,255,0), In(RGB, 0,255,0));
  32. FadeWipe("FadeGreenCut", Icon(8,15), Out(RGB, 0,255,0));
  33.  
  34. FadeWipe("CutBlueFade", Icon(9,15), In(RGB, 0,0,255));
  35. FadeWipe("FadeBlueFade", Icon(10,15), Out(RGB, 0,0,255), In(RGB, 0,0,255));
  36. FadeWipe("FadeBlueCut", Icon(11,15), Out(RGB, 0,0,255));
  37.  
  38. FadeWipe("CutOrangeFade", Icon(12,15), In(RGB, 255,127,0));
  39. FadeWipe("FadeOrangeFade", Icon(13,15), Out(RGB, 255,127,0), In(RGB, 255,127,0));
  40. FadeWipe("FadeOrangeCut", Icon(14,15), Out(RGB, 255,127,0));
  41.  
  42. FadeWipe("CutYellowFade", Icon(15,15), In(RGB, 255,255,0));
  43. FadeWipe("FadeYellowFade", Icon(16,15), Out(RGB, 255,255,0), In(RGB, 255,255,0));
  44. FadeWipe("FadeYellowCut", Icon(17,15), Out(RGB, 255,255,0));
  45.  
  46. FadeWipe("CutPurpleFade", Icon(18,15), In(RGB, 255,0,255));
  47. FadeWipe("FadePurpleFade", Icon(19,15), Out(RGB, 255,0,255), In(RGB, 255,0,255));
  48. FadeWipe("FadePurpleCut", Icon(0,16), Out(RGB, 255,0,255));
  49.  
  50.  
  51. //===================
  52. // Individuals
  53. //===================
  54.  
  55. /* Fades down to black, then fades in the new picture */
  56.  
  57. FADEWIPE("Fade", Out(RGB, 1, 2, 3), In(RGB, 4, 5, 6), Icon(5,0));
  58.  
  59. /* Cut to white, then fade in new picture */
  60. FADEWIPE("Nuclear", In(RGB, 255, 255, 255), Icon(6,0));
  61.  
  62. /* Fade to white then fade new picture in from white */
  63. FADEWIPE("WhiteFade", Out(RGB, 255, 255, 255), In(RGB, 255, 255, 255), Icon(8,0));
  64.  
  65. /* Fade to black, cut to white, fade new picture in from white */
  66. FADEWIPE("NukeAtNight", Out(RGB, 0, 0, 0), In(RGB, 255, 255, 255), Icon(7,0));
  67.  
  68. /* Fade old picture to black, cut in new picture */
  69. FADEWIPE("FadeCut", Out(RGB, 0, 0, 0), Icon(15,12));
  70.  
  71. /* Fade via gold */
  72. FADEWIPE("FauGoldFade", Out(RGB, 230, 165, 55), In(RGB, 230, 165, 55), Icon(9,0));
  73.  
  74. /* Fade via red */
  75. FADEWIPE("FadeViaRed", Out(RGB, 255, 20, 20), In(RGB, 255, 20, 20), Icon(10,0));
  76.  
  77. /* Fade via navyblue */
  78. FADEWIPE("NavyBlueFade", Out(RGB, 20, 20, 180), In(RGB, 20, 20, 180), Icon(11,0));
  79.